home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Jul / DI9807BL / Intf / Client / ChatClient.dpr next >
Encoding:
Text File  |  1998-02-01  |  693 b   |  25 lines

  1. { *****************************************************************************
  2.   Implementing COM Component Callbacks in Delphi
  3.   Code written for Delphi Informant publication
  4.  
  5.   Comments, questions, suggestions?
  6.   Binh Ly, Systems Analyst (bly@brickhouse.com)
  7.   Brickhouse Data Systems (http://www.brickhouse.com)
  8.   *****************************************************************************
  9. }
  10. program ChatClient;
  11.  
  12. uses
  13.   Forms,
  14.   MainFrm in 'MainFrm.pas' {frmMain},
  15.   ChatEvent in 'ChatEvent.pas',
  16.   ChatServer_TLB in '..\Server\ChatServer_TLB.pas';
  17.  
  18. {$R *.RES}
  19.  
  20. begin
  21.   Application.Initialize;
  22.   Application.CreateForm(TfrmMain, frmMain);
  23.   Application.Run;
  24. end.
  25.